home *** CD-ROM | disk | FTP | other *** search
/ Java 1996 August / Java - Summer 1996.iso / kaffe-0.2 / lib / native / java.lang / java.lang.ClassLoader.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-12  |  1.1 KB  |  52 lines

  1. /*
  2.  * java.lang.ClassLoader.c
  3.  *
  4.  * Copyright (c) 1996 Systems Architecture Research Centre,
  5.  *           City University, London, UK.
  6.  *
  7.  * See the file "license.terms" for information on usage and redistribution
  8.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  9.  *
  10.  * Written by Tim Wilkinson <tim@sarc.city.ac.uk>, February 1996.
  11.  */
  12.  
  13. #include <assert.h>
  14. #include <native.h>
  15. #include "java.lang.ClassLoader.h"
  16.  
  17. /*
  18.  * Translate an array of bytes into a class.
  19.  */
  20. struct Hjava_lang_Class*
  21. java_lang_ClassLoader_defineClass(struct Hjava_lang_ClassLoader* this, HArray* data, long offset, long length)
  22. {
  23.     abort();
  24. }
  25.  
  26. /*
  27.  * Resolve classes reference by this class.
  28.  */
  29. void
  30. java_lang_ClassLoader_resolveClass(struct Hjava_lang_ClassLoader* this, struct Hjava_lang_Class* class)
  31. {
  32.     abort();
  33. }
  34.  
  35. /*
  36.  * Load a system class.
  37.  */
  38. struct Hjava_lang_Class*
  39. java_lang_ClassLoader_findSystemClass(struct Hjava_lang_ClassLoader* this, struct Hjava_lang_String* str)
  40. {
  41.     abort();
  42. }
  43.  
  44. /*
  45.  * Initialise this class loader.
  46.  */
  47. void
  48. java_lang_ClassLoader_init(struct Hjava_lang_ClassLoader* this)
  49. {
  50.     abort();
  51. }
  52.